7fde1afdea973ab42cc49f764dd01bce704d612a,opennms-tools/nodemanager-opennmsd/src/main/java/org/opennms/ovapi/OVsnmp.java,OVsnmpPdu,toString,#,456
Before Change
buf.append("variables = "+variables).append(", ");
buf.append("community_len = " + community_len).append(", ");
buf.append("community = " + getCommunity()).append(", ");
buf.append("protocal_version = " + protocol_version).append(", ");
After Change
buf.append("variables = "+variables).append(", ");
buf.append("community = " + (community == null ? "NULL <directly>" : getCommunity())).append(", ");
buf.append("community_len = " + community_len).append(", ");
buf.append("internal = " + internal).append(", ");